home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
2410
/
2410.xpi
/
chrome
/
content
/
foxmarks-invalidpin.js
< prev
next >
Wrap
Text File
|
2010-01-28
|
766b
|
31 lines
/*
Copyright 2008 Foxmarks Inc.
foxmarks-invalidpin.js: handles the UI for the ResetPIN dialog.
*/
function onInvalidPINOK()
{
if(document.getElementById("invalidpinradio").selectedItem.value == "newpin"){
var pin = document.getElementById("newpin").value;
if(!pin || pin.length < 4 || pin.length > 255){
Xmarks.Alert(Xmarks.Bundle().GetStringFromName("error.pinWrongSize"));
return false;
}
window.arguments[0].okay = true;
window.arguments[0].pin = pin;
return true;
} else {
window.arguments[0].okay = false;
return true;
}
}
function onNewPinRadio()
{
document.getElementById("newpin").focus();
document.getElementById("newpin").select();
}